home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-03-13 | 598 b | 25 lines |
- all: leotune guidecat words
-
- leotune: LeoTune.c libleo.a
- gcc -funsigned-char -ansi -O -o leotune LeoTune.c -L./ -lleo
- strip leotune
- ls -la leotune LeoTune.c
-
- guidecat: GuideCat.c libleo.a
- gcc -funsigned-char -ansi -O -o guidecat GuideCat.c -L./ -lleo
- strip guidecat
- ls -la guidecat GuideCat.c
-
- words: Words.c libleo.a
- gcc -funsigned-char -ansi -O -o words Words.c -L./ -lleo
- strip words
- ls -la words Words.c
-
- libleo.a: LeoLib.c LeoLib.h
- gcc -funsigned-char -ansi -c -O -o libleo.o LeoLib.c
- ar cur libleo.a libleo.o
- # ranlib libleo.a
-
- clean:
- rm *~ ,* leotune guidecat words libleo.a *.o
-